home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UTIL / PROGRAMMING / ZIPLIB / h / zutil < prev   
Text File  |  1996-08-30  |  5KB  |  210 lines

  1. /* zutil.h -- internal interface and configuration of the compression library
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h
  4.  */
  5.  
  6. /* WARNING: this file should *not* be used by applications. It is
  7.    part of the implementation of the compression library and is
  8.    subject to change. Applications should only use zlib.h.
  9.  */
  10.  
  11. /* $Id: zutil.h,v 1.14 1996/05/22 11:52:40 me Exp $ */
  12.  
  13. #ifndef _Z_UTIL_H
  14. #define _Z_UTIL_H
  15.  
  16. #include "zlib.h"
  17.  
  18. #if defined(MSDOS) || defined(VMS) || defined(CRAY) || defined(WIN32) || defined(ACORN)
  19. #   include <stddef.h>
  20. #   include <errno.h>
  21. #else
  22.     extern int errno;
  23. #endif
  24. #ifdef STDC
  25. #  include <string.h>
  26. #  include <stdlib.h>
  27. #endif
  28.  
  29. #ifndef local
  30. #  define local static
  31. #endif
  32. /* compile with -Dlocal if your debugger can't find static symbols */
  33.  
  34. typedef unsigned char  uch;
  35. typedef uch FAR uchf;
  36. typedef unsigned short ush;
  37. typedef ush FAR ushf;
  38. typedef unsigned long  ulg;
  39.  
  40. extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
  41. /* (size given to avoid silly warnings with Visual C++) */
  42.  
  43. #define ERR_MSG(err) (char*)z_errmsg[Z_NEED_DICT-(err)]
  44.  
  45. #define ERR_RETURN(strm,err) \
  46.   return (strm->msg = ERR_MSG(err), (err))
  47. /* To be used only when the state is known to be valid */
  48.  
  49.         /* common constants */
  50.  
  51. #ifndef DEF_WBITS
  52. #  define DEF_WBITS MAX_WBITS
  53. #endif
  54. /* default windowBits for decompression. MAX_WBITS is for compression only */
  55.  
  56. #if MAX_MEM_LEVEL >= 8
  57. #  define DEF_MEM_LEVEL 8
  58. #else
  59. #  define DEF_MEM_LEVEL  MAX_MEM_LEVEL
  60. #endif
  61. /* default memLevel */
  62.  
  63. #define STORED_BLOCK 0
  64. #define STATIC_TREES 1
  65. #define DYN_TREES    2
  66. /* The three kinds of block type */
  67.  
  68. #define MIN_MATCH  3
  69. #define MAX_MATCH  258
  70. /* The minimum and maximum match lengths */
  71.  
  72. #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
  73.  
  74.         /* target dependencies */
  75.  
  76. #ifdef MSDOS
  77. #  define OS_CODE  0x00
  78. #  ifdef __TURBOC__
  79. #    include <alloc.h>
  80. #  else /* MSC or DJGPP */
  81. #    include <malloc.h>
  82. #  endif
  83. #endif
  84.  
  85. #ifdef OS2
  86. #  define OS_CODE  0x06
  87. #endif
  88.  
  89. #ifdef WIN32 /* Window 95 & Windows NT */
  90. #  define OS_CODE  0x0b
  91. #endif
  92.  
  93. #if defined(VAXC) || defined(VMS)
  94. #  define OS_CODE  0x02
  95. #  define FOPEN(name, mode) \
  96.      fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
  97. #endif
  98.  
  99. #ifdef AMIGA
  100. #  define OS_CODE  0x01
  101. #endif
  102.  
  103. #if defined(ATARI) || defined(atarist)
  104. #  define OS_CODE  0x05
  105. #endif
  106.  
  107. #ifdef MACOS
  108. #  define OS_CODE  0x07
  109. #endif
  110.  
  111. #ifdef __50SERIES /* Prime/PRIMOS */
  112. #  define OS_CODE  0x0F
  113. #endif
  114.  
  115. #ifdef TOPS20
  116. #  define OS_CODE  0x0a
  117. #endif
  118.  
  119. #ifdef _BEOS_
  120. #  define fdopen(fd,mode) NULL /* No fdopen() */
  121. #endif
  122.  
  123. #ifdef ACORN
  124. #  define fdopen(fd,mode) NULL /* No fdopen() */
  125. #endif
  126.  
  127.  
  128.  
  129.         /* Common defaults */
  130.  
  131. #ifndef OS_CODE
  132. #  define OS_CODE  0x03  /* assume Unix */
  133. #endif
  134.  
  135. #ifndef FOPEN
  136. #  define FOPEN(name, mode) fopen((name), (mode))
  137. #endif
  138.  
  139.          /* functions */
  140.  
  141. #ifdef HAVE_STRERROR
  142.    extern char *strerror OF((int));
  143. #  define zstrerror(errnum) strerror(errnum)
  144. #else
  145. #  define zstrerror(errnum) ""
  146. #endif
  147.  
  148. #if defined(pyr)
  149. #  define NO_MEMCPY
  150. #endif
  151. #if (defined(M_I86SM) || defined(M_I86MM)) && !defined(_MSC_VER)
  152.  /* Use our own functions for small and medium model with MSC <= 5.0.
  153.   * You may have to use the same strategy for Borland C (untested).
  154.   */
  155. #  define NO_MEMCPY
  156. #endif
  157. #if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
  158. #  define HAVE_MEMCPY
  159. #endif
  160. #ifdef HAVE_MEMCPY
  161. #  ifdef SMALL_MEDIUM /* MSDOS small or medium model */
  162. #    define zmemcpy _fmemcpy
  163. #    define zmemcmp _fmemcmp
  164. #    define zmemzero(dest, len) _fmemset(dest, 0, len)
  165. #  else
  166. #    define zmemcpy memcpy
  167. #    define zmemcmp memcmp
  168. #    define zmemzero(dest, len) memset(dest, 0, len)
  169. #  endif
  170. #else
  171.    extern void zmemcpy  OF((Bytef* dest, Bytef* source, uInt len));
  172.    extern void zmemzero OF((Bytef* dest, uInt len));
  173. #endif
  174.  
  175. /* Diagnostic functions */
  176. #ifdef DEBUG
  177. #  include <stdio.h>
  178. #  ifndef verbose
  179. #    define verbose 0
  180. #  endif
  181. #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}
  182. #  define Trace(x) fprintf x
  183. #  define Tracev(x) {if (verbose) fprintf x ;}
  184. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  185. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  186. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  187. #else
  188. #  define Assert(cond,msg)
  189. #  define Trace(x)
  190. #  define Tracev(x)
  191. #  define Tracevv(x)
  192. #  define Tracec(c,x)
  193. #  define Tracecv(c,x)
  194. #endif
  195.  
  196.  
  197. typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
  198.  
  199. extern void z_error    OF((char *m));
  200.  
  201. voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
  202. void   zcfree  OF((voidpf opaque, voidpf ptr));
  203.  
  204. #define ZALLOC(strm, items, size) \
  205.            (*((strm)->zalloc))((strm)->opaque, (items), (size))
  206. #define ZFREE(strm, addr)  (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  207. #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  208.  
  209. #endif /* _Z_UTIL_H */
  210.